home *** CD-ROM | disk | FTP | other *** search
- Path: navet.enator.se!usenet
- From: Enator A/S <ENATOR@ENATOR.DK>
- Newsgroups: comp.lang.c++
- Subject: Re: Q:order of evaluation
- Date: 16 Jan 1996 15:35:27 GMT
- Organization: Enator A/S
- Message-ID: <4dggjv$vs6@navet.enator.se>
- References: <4dfhlu$a33$1@mhafn.production.compuserve.com>
- NNTP-Posting-Host: 193.162.31.48
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
-
- The precedence dominates over the grouping, so the grouping is only used
- when the precedence of the operators are the same. () has the highest
- precedence, so (i+=1) is evaluated first.
-
- Hardy, ENATOR
-
-